GtkStyleContext: Add gtk_render_handle().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 27 Mar 2010 20:28:44 +0000 (21:28 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:59 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index c1fa38cdd89add83a2cf76752fd700c9edf1ae93..9ec30d07fd2d8f38083ec80f9f6ba194b2c3cd52 100644 (file)
@@ -846,5 +846,27 @@ gtk_render_extension (GtkStyleContext *context,
   engine_class->render_extension (priv->theming_engine, cr, x, y, width, height, gap_side);
 }
 
+void
+gtk_render_handle (GtkStyleContext *context,
+                   cairo_t         *cr,
+                   gdouble          x,
+                   gdouble          y,
+                   gdouble          width,
+                   gdouble          height,
+                   GtkOrientation   orientation)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_handle (priv->theming_engine, cr, x, y, width, height, orientation);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index d0f380489c7a17ad82320a19b385a06505f06df7..2c2485b406826c3e170bdf312e646f0d65a6ac27 100644 (file)
@@ -179,6 +179,13 @@ void gtk_render_extension (GtkStyleContext *context,
                            gdouble          width,
                            gdouble          height,
                            GtkPositionType  gap_side);
+void gtk_render_handle    (GtkStyleContext *context,
+                           cairo_t         *cr,
+                           gdouble          x,
+                           gdouble          y,
+                           gdouble          width,
+                           gdouble          height,
+                           GtkOrientation   orientation);
 
 G_END_DECLS